Certainly not.
Westhill will get an update and maybe something todo with 3D view using a red/green glasses.
Then the next big update, will be about tyre physics.
Get rid of Windows 8 entirely and stick with Windows 7.
W8 is a piece of crap and W9 will be out next year already and will be what W8 should have been.
Just a question from a way below average driver, do setups really make such difference?
I mean, since I am not fast by myself (all down to a lack of practice) I have asked quicker guys their setup and often got it.
Then I selected them, drove around for a couple of laps, only to find out that I was more off then on the track, since the setup hard ever suited my driving style.
I believe that the good drivers are fast anyway, just by setting a few things the right way (like brake balance, gearbox).
It is a hardware failure and might very well be releated to a cooling issue.
If you have the skills and tools, open up the laptop and clean the cooler that is supposed to keep the GPU cool.
If you don't have the skills and/or tools, take it in for repair and let it be handled by someone with knowledge of hardware.
That's funny.
Now I see that thread again, I do remember it.
I secretly started my own cruise (well, Racing For Money actually) project a few weeks ago.
Came up with some very smart solutions, if I was the judge about it
Done so far:
-get a loan to buy first car when entering server
-variable interest level for the bank
-payment after each completed lap
-automatic tax of 33% every lap, when having a loan
-option to donate price money
-top3 of each race get a share of the price pool
-take out loan
-payback loan
-buy new car
-buy extra intake
-fines when finishing a race with an open penalty (money goes into price pool)
I have a lot of ideas to add to this system, but footy is in the way now
I am glad it's solved and by the sound of it, it was a driver issue in the end then.
The restore method you used, is a restore to factory defaults, using an image supplied by Sony.
It has Windows pre-installed, along with drivers (probably old ones though)
You only need to run Windows update and need to have a look which drivers you can update.
Good luck and thanks for reporting back to us.
I have said it a couple of times lately.
Download LFS Lapper, unzip de file, set the correct insim port and password and connect it to your LFS server (works even locally on your PC).
The start coding in that environment and see that it isn't too difficult to build a simple cruise system.
When you really get stuck, there's always this forum to show your code and ask for help.
It will save you all the trouble of having to code the whole insim protocol and the Lapper environment is flexible enough to coop with a cruise add-on.
Hardware problem then.
So it has to go in for repair.
Probably a fried GPU (possibly because the cooler is cluttered with dust and dirt), but since it's a laptop, it will need a main-board switch to get it fixed.
Scawen stated recently that Demo drivers won't get more content.
So if you want to drive other cars, you will have to buy the game.
It's really cheap, so money can hardly be a problem and the game is more then worth it.
If re-installing the driver hasn't solved the problem (as said, I think the problem is hardware related), then a restore will probably not solve it either.
You could try a restore to factory defaults if you won't lose much by doing so.
Then you would know for sure if it's hardware related or not.
Since it happens before the driver for the video card has been loaded, I think it is a hardware fault.
Take it in for repair if you still have warranty (or even when you don't have it)
Then it might have been useful to mention which one you downloaded and where you got stuck when trying to install it.
A forum like this is a nice place to get help, but your part is to come up with as much information as possible, so we can give you the help you need.
So what insim have you downloaded, where did you got stuck when installing it and what have you tried yourself to solve the problem?
What's the point in giving such hostile answer?
Either help the person or don't respond at all.
Asking a question is allowed, even for a demo player.
To answer the actual question, have a search on this forum.
You will find enough insim cruise programs, which you can download and install on your server.
If you really want to make one of your own (some experience in coding is required), start doing it within the LFS Lapper environment, as it will handle all your insim network traffic, so you can concentrate on the cruise code.
There's also an event for when max car resets is reached:
Event OnMaxCarResets( $userName ) # Player event Spectate if player has used car reset more than the max globalMsg( langEngine( "%{main_maxreset}%" , GetCurrentPlayerVar( "NickName" ) ) ); cmdLFS( "/spec " . GetCurrentPlayerVar( "UserName" ) ); EndEvent
As you can see in above code, a globalMsg (this means a message to be seen by everyone) is send and then the player who reached that limit, gets spectated.
There's also an option to send a message to the player who reached that limit, then you have to use privMsg
Using "langEngine" might be a little complitated when you first start coding, so forget about that for now and work with normal text.
Second learning point then
Lapper is driven by events, so when something happen in LFS, Lapper does something.
Example, someone joins a server, some leaves the pits, some passes split1, etc.
Like I said in previous posting, those are moments a player can get spectated and that Lapper can do something.
There is an event executed when a player spectates:
##################################### #Action on teleport to pit (Shift+P)# #####################################
# Actions to execute when player spectates or disconnects (leaves race).
Event OnLeaveRace( $userName ) # Player event # privMsg( GetCurrentPlayerVar("NickName" ) . "^8 left the race!" ); EndEvent
No, there isn't a forum where you can learn to make you own addons.
This forum is the best place to ask for help, but only in a way like "I made this and that and got stuck now".
Not to blame you in any way, you have been very friendly, but lately too much people come in here asking for this and that and even when you do help them with scripts, they are ungrateful and ask for more.
While the best way to learn something, is by doing it your self and ask for help when you get stuck at some point.
Having said that, I am here to help you, so if you could tell me when a players gets spectated, I can see which event in Lapper that is and can then create a small script for you to get you going.
I don't know what that addon does (need to look into the code), but all lines starting with # are disabled lines in Lapper (see, first thing learned here )